home *** CD-ROM | disk | FTP | other *** search
/ By Popular Request 2.0 / By Popular Request 2.0 (Arsenal Computer).ISO / amiga_1 / addtabs.lha / AddTabs.doc < prev   
Text File  |  1995-06-04  |  2KB  |  100 lines

  1.  
  2.                                  ***********
  3.                                  * AddTabs *
  4.                                  ***********
  5.  
  6.  
  7.  
  8. Introduction
  9. ------------
  10.  
  11. Two months ago I was editing a makefile but I had a big problem :
  12. My text editor didn't save tabs in my file so make didn't want
  13. my makefile. So I decided to write this little tool which allows
  14. you to add tabs in your files.
  15.  
  16.  
  17. Installation
  18. ------------
  19.  
  20. Just copy AddTabs where you want.
  21.  
  22. Usage
  23. -----
  24.  
  25. From CLI : AddTabs <Input> <Output> <char>
  26.  
  27. where Input is the name of the input file (without tabs), Output is the
  28. name of the output file (with tabs) and char stands for the character
  29. which will be swapped with the tab character.
  30.  
  31. Example : If you have the following makefile,
  32.  
  33. jdc.o:jdc.h jdc.c
  34. ^gcc -c jdc.c
  35.  
  36. you can run AddTabs like that :
  37.  
  38. AddTabs makefile makefile2 ^
  39.  
  40. and all '^' will be swapped with nice tabs.
  41.  
  42. Warning :
  43.  
  44.  - NEVER use the same name for input file and output file or you will
  45.    loose your input file.
  46.  
  47.  - AddTabs searches ALL the characters matching with the one you specify
  48.    so don't use a character which can be useful in your file (I suggest
  49.    ^ for makefiles).
  50.  
  51.  - Respect the syntaxic order when you run AddTabs or the program will
  52.    react in a VERY weird way.
  53.  
  54.  
  55. Disclaimer
  56. ----------
  57.  
  58. You use AddTabs at your own risks. It has been tested for hours on my computer
  59. (A1200). I can't be responsible if it breaks something (it shouldn't, due
  60. to the technics used).
  61.  
  62.  
  63. History
  64. -------
  65.  
  66. June 1995              Version 1.0             First release
  67.  
  68.  
  69. Author / Distribution
  70. ---------------------
  71.  
  72. AddTabs has been created by
  73.  
  74. Mr Franck ANIERE
  75. 30, Rue Jean Bouin
  76. 93220 GAGNY (France)
  77.  
  78. E-Mail : aniere@massena.univ-mlv.fr
  79.          aniere@fillmore.univ-mlv.fr
  80.          aniere@univ-mlv.fr (if the 2 others don't work)
  81.  
  82. IRC    : Nick FSA on the channels #amigafr and #amiga
  83.  
  84. You can join me for any comments, suggestions or bug reports.
  85.  
  86. This product is FREEWARE, but I keep a copyright on it.
  87. You can diffuse and use it freely if you keep the archive
  88. intact and don't put a virus in it.
  89.  
  90. Aminet, Fred Fish, Funet and other Public Domain organisations
  91. or Amiga magazines are allowed to distribute this product, on
  92. floppy disk as well as on CD ROM if the price of the support is
  93. normal. France Festival Distribution WILL NEVER BE ALLOWED to
  94. diffuse it.
  95.  
  96. To do
  97. -----
  98.  
  99. Well, what do you suggest ?
  100.